home *** CD-ROM | disk | FTP | other *** search
- ------------------------------------------------------------------------------
- Overview of the trueSpace extensions (TSX) API
-
- Release 3.0
- Apr 11, 1997
-
- Copyright Caligari Corp.
- ------------------------------------------------------------------------------
-
-
-
- 1. INTRODUCTION
- ~~~~~~~~~~~~~~~~~~~~
-
- The trueSpace Extension (TSX) Interface is a mechanism by which developers
- outside Caligari can add functionality to trueSpace. This document
- describes the latest release of the TSX API (numbered to coincide with
- trueSpace release numbers).
-
-
-
- 2. PLATFORM
- ~~~~~~~~~~~~~~~~
-
- At present, trueSpace extensions are only supported on the Windows
- platforms. A trueSpace Extension (TSX) is a dynamically linked library
- (DLL) loaded by trueSpace at run-time. Like trueSpace, TSXs must be WIN32
- applications. If a TSX uses MFC, its installation procedure must be
- responsible for ensuring the presence of the correct versions of any needed
- MFC DLLs.
-
- While TSXs may be developed using any compiler, primary support at present
- is for Microsoft Visual C++ 4.1. The API may also be usable in "C" mode,
- but is not currently supported.
-
-
-
-
- 3. COMPILING A TSX
- ~~~~~~~~~~~~~~~~~~~~~~~
-
- The TSX API is made available in the form of a set of "header" files and
- an "import" library that together define the "exported" items accessible in
- a running trueSpace. TrueSpace itself consists of an executable
- (truespac.exe) and a dynamically linked library (tsxapi.dll). The TSX API
- functions are exported from the DLL.
-
- List of files in the TSX API:
-
- Readme.txt .. This file
-
- tsxapi.lib .. The import library. Specifies dynamic linkage with
- tsxapi.dll .
-
- tsxapi.dll .. Standard DLL part of trueSpace.
-
- Header files:
-
- tsx.h .. Single header for including all other header files.
-
- The following header files may also be included individually in
- your source code:
-
- tsximp.h .. This must be included before all other TSX headers.
- tsxapi.h .. Includes all the API module headers.
- tsxErr.h .. Error codes.
-
- Individual API module headers:
-
- tsxplug.h .. User interface and TSX installation API.
-
- tsxAnim.h .. Animation module.
- tsxAView.h .. Active-Viewport module.
- tsxCamra.h .. Cameras.
- tsxGeom.h .. Basic geometry functions.
- tsxGNode.h .. Geometric Nodes.
- tsxGroup.h .. Group Nodes.
- tsxLight.h .. Lights.
- tsxMatrl.h .. Materials, used for painting objects.
- tsxMisc.h .. Miscellaneous items.
- tsxMNode.h .. Model Nodes.
- tsxMouse.h .. Mouse interaction module.
- tsxPolyh.h .. Polyhedra.
- tsxScene.h .. Scene Node.
- tsxSelec.h .. Object Selection module.
- tsxSobj.h .. Common Abstract Object.
- tsxTypes.h .. All Common type definitions.
-
-
-
-
- 4. INTERFACING WITH trueSPACE
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Typically, a user will load a TSX from within trueSpace by selecting the
- appropriate DLL through a File-Open dialog. Each loaded TSX will be
- assigned to a button in trueSpace's interface. The TSX will supply a Bitmap
- and a String resource to serve as the button's icon and help message. Upto
- eight TSXs may be installed in trueSpace at any given time.
-
- Every TSX must implement the following four functions (see tsxplug.h):
-
- void tsxGetData( tsxData* tsx_data, int tsxid );
- Called once upon loading, to access basic information about the
- TSX, including the icon and help message resources. Assigns each
- extension installation a unique id (tsxid).
-
- int tsxOnLeftClick(void);
- Called when the user Left-Clicks on the TSX button. Primary entry
- point for invoking the TSX's functionality. The TSX may perform a
- "one-shot" action (e.g. move an object), or stay active for
- continued interaction with the user (e.g. for drawing). If the
- eXtension wants to stay active, this function must return
- `tsxPLUG_STAYON'. This will turn the eXtension's button "ON".
- Subsequent click on this button will result in a call to the
- function `tsxDeactivate', and the eXtension will be deactivated.
- The same happens when the user selects some other tool through
- trueSpace's interface. Some selected tools (like navigation and
- rendering) are allowed to operate while an eXtension is active.
- For one-shot operations, or where the eXtension does not want to
- have `tsxDeactivate' invoked as described above, `tsxOnLeftClick'
- must return tsxPLUG_DONE. The eXtension is then considered to be
- active only while executing `tsxOnLeftClick'. The main purpose
- of this managing an eXtension's "active" status is for allowing an
- eXtension to "switch off" (and perhaps perform some clean-up operation)
- when some other tool is selected. In addition, an eXtension may
- install callbacks only while it is active.
-
- void tsxDeactivate(void);
- When an eXtension requests it be allowed to stay active (see
- above), this function is called to deactivate it. This happens when
- some other editing tool is selected, when trueSpace goes out of
- edit mode and into browse mode, or when the user tries to install
- another eXtension. Certain tools are allowed to operate while an
- eXtension is active. These include all navigation and most
- rendering operations.
-
- void tsxOnRightClick(void);
- Called when the user Right-Clicks on the TSX button. Primarily used
- to display a parameter dialog or an "About" dialog.
-
- In the trueSpace user-interface paradigm, a TSX installs a tool on a panel
- button. The tool is invoked, like all other tools in trueSpace, when the
- user Left-Clicks the TSX's button. A Right-Click on the button should
- display a parameter dialog for the TSX, if any, or an "About" dialog
- describing the TSX.
-
- TSXs are responsible for implementing and managing their own windows. For
- example, a TSX may use MFC to manage its interface. In the final release,
- the TSXAPI will allow a TSX to install the mouse for user interaction.
- trueSpace will then forward mouse action messages to the TSX. When some
- other tool is selected by the user, trueSpace will tell the TSX that it is
- being deactivated.
-
- The trueSpace eXtension API allows the installation of some callbacks.
- These can only be done while an eXtension is "active".
-
- An extension may test whether it is compatible with a copy of trueSpace
- by checking the version number of the TSX API in that copy of trueSpace
- (see tsxMisc.h).
-
-
-
-
- 5. OVERVIEW of the API
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Please use the documentation in the header files and the provided sample
- extensions as primary reference. A brief overview is given below.
-
- The Scene Graph
-
- Objects in a trueSpace scene are arranged in a tree-shaped hierarchy, with a
- permanent Scene node (tsxSCENE) at the top, and geometric nodes and leaves
- (the abstract type tsxGNODE). The most important objects that appear in the
- Scene Graph are Lights (tsxLIGHT), Cameras (tsxCAMERA), Polyhedra
- (tsxPOLYHEDRON), and Groups (tsxGROUP) used to build hierarchical objects.
- All these are represented in the API as structures, defined in tsxTypes.h.
-
- Object hierarchy supported in this release:
-
- tsxSOBJ
- +--- tsxMATERIAL
- +--- tsxSCENE
- +--- tsxGNODE
- +--- tsxCAMERA
- +--- tsxLIGHT
- +--- tsxMNODE
- +--- tsxPOLYHEDRON
- +--- tsxGROUP
- +--- tsxLODGROUP
- +--- tsxMBALLOBJ
-
- The actual structure of the scene graph has each parent node pointing
- to its first child, and each child pointing to its next sibling. From
- the SCENE node, use `tsxSceneGetFirstNode()' to get to the first
- GNODE (see tsxScene.h). From there, use `tsxGNodeGetNext()' to get to
- other GNODEs at the top level in the scene graph. Similarly, use
- `tsxGNodeGetFirstChild()' to get to the first subNode of a GROUP or LOD
- node, and then use `tsxGNodeGetNext()' to get to other children of the
- same GROUP/LOD node (see tsxGNode.h).
-
- Please see the individual header files for more documentation on each
- of these object types.
-
- NOTE:
- There is very limited support for the types tsxLODGROUP and tsxMBALLOBJ.
-
-
- Brief Guide to the Header files
- (see also Section 3 on Compiling, above)
-
- tsxplug.h .. User interface and TSX installation API.
- This contains all the information needed to make trueSpace correctly
- install and invoke the extension.
-
- tsxMisc.h .. Miscellaneous items,
- including checking TSX API's version number.
-
- tsxTypes.h .. All Common type definitions.
- Start your familiarization with the TSX API with this header.
-
- tsxSobj.h .. Common Abstract Object.
- tsxScene.h .. Scene Node.
- tsxGNode.h .. Geometric Nodes.
- tsxCamra.h .. Cameras.
- tsxLight.h .. Lights.
- tsxMNode.h .. Model Nodes.
- tsxGroup.h .. Group Nodes.
- tsxPolyh.h .. Polyhedra.
- These header files describe the different object types that
- form a scene, as mentioned above.
-
- tsxMatrl.h .. Materials.
- Every polyhedron has one or more materials defining various visible
- attributes like color, texture, bumps.
-
- tsxAnim.h .. Animation module.
- This file describes trueSpace's animation interface.
-
- tsxSelec.h .. Object Selection module.
- This describes the interface for accessing the currently
- selected object, and changing that selection.
-
- tsxAView.h .. Active-Viewport module.
- This describes the interface for manipualting the active view
- of the scene, e.g. moving the viewpoint.
-
- tsxMouse.h .. Mouse interaction module.
- Together with functions declared in "tsxAView.h", this
- interface can be used to interact with the mouse, and pick
- objects in the scene (lower level than tsxSelec.h).
-
- tsxGeom.h .. Basic geometry functions.
- This lists some functions for performing basic geometric
- manipulations.
-
- ------------------------------------------------------------------------------
-